home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Queries / PHandleQuery.h < prev    next >
C/C++ Source or Header  |  1996-10-14  |  767b  |  41 lines

  1. /*
  2.  *--- PHandleQuery.h ------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Thu, Oct 12, 1995 @ 10:00 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PHandleQuery__
  10. #define __PHandleQuery__
  11.  
  12. #ifdef __MWERKS__
  13. #pragma once
  14. #endif
  15.  
  16. #include "PMTypes.h"
  17. #include "PQuery.h"
  18.  
  19. class PRequestBuf;
  20.  
  21. class PHandleQuery
  22. {
  23.  
  24. protected:
  25.  
  26.     PHandleQuery();
  27.     PHandleQuery(const ePMQuery op);
  28.     PHandleQuery(ePMQuery op, PRequestBuf& request);
  29.  
  30.     ~PHandleQuery();
  31.  
  32.     void            InitHandle();
  33.  
  34.     PMHandle        itsHandle;
  35.     const char *    replyPtr;
  36. };
  37.  
  38. #endif
  39.  
  40. // end of PHandleQuery.h
  41.